home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Utilities / byacc 1.8.2 / yyerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-04  |  156 b   |  13 lines  |  [TEXT/R*ch]

  1. #include <stdio.h>
  2.  
  3. #if __STDC__
  4. void yyerror(char *msg)
  5. #else
  6. void yyerror(msg)
  7. char *msg;
  8. #endif
  9. {
  10.     (void) fprintf(stderr, "%s\n", msg);
  11.     return;
  12. }
  13.